home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / offumac / TITOLI.DIR / 00022_Script_22 < prev   
Text File  |  1999-04-28  |  250b  |  13 lines

  1. on VaiHome
  2.   if (the commandDown) and (the key="q") then go "PlayDone"
  3.   if (the key="q") then go "PlayDone"
  4.   if (the keycode="53") then go "PlayDone"
  5. end
  6.  
  7. on keydown
  8.   if the key = "q" then
  9.     go "playdone"
  10.   else
  11.     pass
  12.   end if
  13. end